home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / titlbar.exe / TTITLBAR.H < prev   
C/C++ Source or Header  |  1992-10-03  |  400b  |  21 lines

  1. #if defined( Uses_TTitleBar ) && !defined( __TTitleBar )
  2. #define __TTitleBar
  3.  
  4. class far TRect;
  5. class far TPalette;
  6.  
  7. class TTitleBar : public TStaticText
  8.     {
  9.     public:
  10.         TTitleBar( const TRect& bounds, const char *aText );
  11.  
  12.         virtual TPalette& getPalette() const;
  13.     };
  14.  
  15. inline TTitleBar::TTitleBar( const TRect& bounds, const char *aText ) :
  16.         TStaticText(bounds,aText)
  17.     {
  18.     }
  19.  
  20. #endif
  21.